home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / nwshare / nw_share.doc < prev    next >
Text File  |  1996-07-10  |  8KB  |  242 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.                                       NW_SHARE
  19.  
  20.  
  21.                                     Version 1.1
  22.  
  23.  
  24.                                    March 17, 1994
  25.  
  26.  
  27.  
  28.                                Copyright (C)1993-1994
  29.                              All Rights Reserved (GTDR)
  30.  
  31.  
  32.  
  33.                                   New World Designs
  34.                                      PO Box 12217
  35.                                Wichita, KS 67277-2217
  36.                                        U.S.A.
  37.  
  38.                          BBS: (316)262-1829, 300-28800 Baud
  39.  
  40.                            Internet Email: sysop@nwis.com
  41.  
  42.  
  43.  
  44.  
  45.  
  46.         The information in this document is subject to change without notice.
  47.  
  48.  
  49.        SHAREWARE EVALUATION VERSION WARRANTY:
  50.  
  51.        The shareware version is provided as is.  New World Designs makes
  52.        NO warranty of any kind, expressed or implied, including without
  53.        limitation, any warranties of merchantability and/or fitness for a
  54.        particular purpose.
  55.  
  56.  
  57.        REGISTERED VERSION WARRANTY:
  58.  
  59.        New World Designs warrants the physical diskette provided with
  60.        the registered versions to be free of defects in materials and
  61.        workmanship for a period of 90 days from the date of registration.
  62.        If New World Designs receives notification within the warranty
  63.        period of defects in materials or workmanship, and such notification
  64.        is determined by New World Designs to be correct, New World Designs
  65.        will replace the defective diskette.
  66.  
  67.        The entire and exclusive liability and remedy for breach of this
  68.        warranty shall be limited to replacement of defective diskette and
  69.        shall not include or extend to any claim for or right to recover any
  70.        other damages, including but not limited to, loss of profit, data,
  71.        or use of the software, or special, incidental, or consequential
  72.        damages or other similar claims, even if New World Designs has
  73.        specifically advised of the possibility of such damages.  In NO event
  74.        will New World Designs liability for any damages to you or any other
  75.        person ever exceed the lower of the suggested list price or actual
  76.        price paid for the license to use the software, regardless of any
  77.        form of the claim!
  78.  
  79.  
  80.        LICENSE LIMITATIONS:
  81.  
  82.        The licensee shall not use, copy, rent, sell, modify, decompile,
  83.        disassemble, reverse engineer, or transfer the licensed program
  84.        except as provided in this agreement.  Any such unauthorized use
  85.        shall result in immediate and automatic termination of this license.
  86.  
  87.        New World Designs grants you the right to use one copy of PathTool
  88.        on a single computer.  You may not network PathTool or otherwise use
  89.        it on more than one computer or computer terminal at the same time.
  90.  
  91.        All rights not specifically granted in this statement are reserved
  92.        by New World Designs.
  93.  
  94.  
  95.        INTRODUCTION:
  96.  
  97.        NW_SHARE detects a SHARE driver and sets the ERRORLEVEL.  It uses 
  98.        two different tests to determine is the SHARE driver exists.  The
  99.        tests are: SHARE API test and lock/unlock test.  If either of these
  100.        pass, then a non-zero number is returned in the ERRORLEVEL.
  101.  
  102.        This program is typically used for network batch files that need
  103.        to ensure that an end user has not removed the SHARE driver.
  104.  
  105.        Originally, this was developed to help ensure the network version
  106.        of Wildcat BBS would run on hundreds of computers attached to a
  107.        Novell network.
  108.        
  109.        Why did we give this program such a weird name?  It is getting 
  110.        very tough picking a 8 char file name that is not already used!
  111.  
  112.  
  113.  
  114.        ERRORLEVEL:
  115.  
  116.           0  = No SHARE driver is installed.         
  117.           1 |= Passed SHARE lock/unlock test.
  118.           2 |= Passed SHARE API test.
  119.  
  120.          Each test passed will OR the number on the left side together.
  121.          For example, a value of 3 means it passed both tests.
  122.  
  123.  
  124.  
  125.        EXAMPLE:
  126.  
  127.           nw_share /NOLOGO /NOINFO /NOERRLVL
  128.           if errorlevel 1 goto YES
  129.           echo Error: You do not have SHARE loaded!
  130.           goto BR1
  131.           :YES
  132.           echo You have have SHARE loaded.  Great! 
  133.           :BR1
  134.  
  135.  
  136.        SYNTAX:
  137.  
  138.           NW_SHARE  [{/-}options...]
  139.  
  140.  
  141.  
  142.        OPTIONS:
  143.  
  144.           NOLOGO   : Suppress displaying title banner.
  145.  
  146.           NOINFO   : Suppress displaying information.
  147.  
  148.           NOERRLVL : Suppress displaying errorlevel.
  149.  
  150.           $        : Display license text.
  151.  
  152.           ?        : Display help text.
  153.  
  154.  
  155.  
  156.       COMMAND DESCRIPTIONS:
  157.  
  158.          - The order of options are not critical.
  159.          - All commands must be preceded with either / or -.
  160.  
  161.  
  162.        SYSTEM REQUIREMENTS:
  163.  
  164.         o  DOS 2.1 or later.
  165.         o  64K RAM available to application (after DOS loaded).
  166.  
  167.  
  168.  
  169.        SUPPORT:
  170.  
  171.         o  Call: New World Information Service (NWIS) BBS, (316)262-1829
  172.                  300-28800 baud modem, 24hrs, .QWK packet mail door.
  173.                  Over 3 years online with more than 70000 calls.
  174.  
  175.         o  Internet Email: sysop@nwis.com
  176.  
  177.         o  Write: New World Designs
  178.                   PO Box 12217
  179.                   Wichita, KS  67277-2217
  180.  
  181.  
  182.  
  183.        CUSTOM FEATURES:
  184.  
  185.         o  Customization is available but isn't included with the
  186.            registration fee.  Contact us for a quote!
  187.  
  188.         o  If a feature can be included in a normal PathTool release,
  189.            the cost might be waived.
  190.  
  191.         o  You must register PathTool before any customization!
  192.  
  193.  
  194.  
  195.        FUTURE ADDITIONS:
  196.  
  197.         o  We have many NEW commands and options on our wish list.
  198.            Look for NEW versions coming in the near future!
  199.  
  200.  
  201.  
  202.        ACKNOWLEDGEMENTS:
  203.  
  204.         Programmer  - Steve Meirowsky.
  205.         Proofreader - Laura Haas.
  206.         Beta Tester - Ron Flory, David Hagood, Jeff Rayner.
  207.  
  208.  
  209.        TRADEMARK ACKNOWLEDGEMENTS:
  210.  
  211.         IBM is a trademark of International Business Machines Corporation.
  212.         MSDOS is a registered trademark of Microsoft Corporation.
  213.         NetWare & Novell are registered trademarks of Novell, Inc.
  214.         NW_SHARE rights and usage are reserved by New World Designs.
  215.  
  216.  
  217.  
  218.        DISK VENDOR INFORMATION:
  219.  
  220.         Shareware distributors and disk vendors who wish to distribute
  221.         the PATHTOOL package MUST comply with the following restrictions:
  222.  
  223.         o  You may NOT list any of our products in advertisements, catalogs,
  224.            or other literature which describes our products as "FREE SOFTWARE".
  225.            It must be stated that this software is shareware and the term
  226.            shareware must be explained so that users know the software is
  227.            copyrighted and that an additional fee must be paid if they use it.
  228.  
  229.         o  You can't modify any of the files supplied by us.  All the files
  230.            must be distributed together, although other files may be added.
  231.  
  232.         o  You must stop selling copies of our software upon written notice.
  233.  
  234.         o  We would appreciate that ALL vendors notify us if any of our
  235.            products are listed in your catalogs or distributed as part of
  236.            a collection including CD-ROMS.  If you comply, we will send you
  237.            the next software release.
  238.  
  239.         o  We would appreciate you check our BBS for the most recent version
  240.            before distributing.  Please leave us a message when calling!
  241.  
  242.